home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 11
/
Cream of the Crop 11-1.iso
/
program
/
knobvb25.zip
/
VC.ZIP
/
VCVIEW.H
< prev
Wrap
C/C++ Source or Header
|
1996-01-13
|
1KB
|
56 lines
// vcview.h : interface of the CVcView class
//
/////////////////////////////////////////////////////////////////////////////
class CVcView : public CFormView
{
protected: // create from serialization only
CVcView();
DECLARE_DYNCREATE(CVcView)
public:
//{{AFX_DATA(CVcView)
enum { IDD = IDD_VC_FORM };
CVBControl* m_knobrear;
CVBControl* m_knobfront;
CVBControl* m_knobright;
CVBControl* m_knobleft;
CVBControl* m_knob1;
//}}AFX_DATA
// Attributes
public:
CVcDoc* GetDocument();
// Operations
public:
// Implementation
public:
virtual ~CVcView();
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
// Generated message map functions
protected:
//{{AFX_MSG(CVcView)
afx_msg void OnTurnKnobLeft(UINT, int, CWnd*, LPVOID);
afx_msg void OnTurnKnobRight(UINT, int, CWnd*, LPVOID);
afx_msg void OnTurnKnobFront(UINT, int, CWnd*, LPVOID);
afx_msg void OnTurnKnobRear(UINT, int, CWnd*, LPVOID);
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
#ifndef _DEBUG // debug version in vcview.cpp
inline CVcDoc* CVcView::GetDocument()
{ return (CVcDoc*)m_pDocument; }
#endif
/////////////////////////////////////////////////////////////////////////////